[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1 The Operating System

This chapter handles questions concerning the operating system, Kickstart as well as the Workbench.


[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.1 Can I use another Kickstart than the builtin?

First let’s drop some words on the Kickstart’s Copyright: This belongs to Commodore, you must not use Kickstarts, without the right to do it! Especially it isn’t allowed to make an image of anyone else’s Kickstart and run this on your own Amiga. (I even doubt that it is allowed to do this on your own Amigas, if you have more than one.)

But of course it is possible and allowed for some people, developers for example. There are two different ways, a hardware solution and a software solution. The former is to buy a card which can hold two or more Kickstart ROMS and allows to select between when the System is booting.

The software solution needs a program (softkicker) and an image of the ROM. The softkicker allocates RAM, loads the ROM image into the allocated memory and reboots. Of course you have less RAM after the Reboot: 256Kb when running Kickstart 1.2 or 1.3 and 512Kb for Kickstart 2.0 or higher.

There are different Softkickers, some of them needing a MMU (@pxref{68EC0xx, MMU,MMU}). I recommend SKick 3.43 (Aminet, directory ‘util/boot’) because it doesn’t need a MMU and supports many different Kickstarts. It is rather easy to create the ROM image using the following program:

    #include <stdio.h>

    #define kickorig 0xf80000   /*  0xfc0000 for Kick 1.2 und 1.3   */
    #define kicklen  0x080000   /*  0x040000 for Kick 1.2 und 1.3   */

    void main(int argc, char*argv[])
    {
        FILE *fh;

        if ((fh = fopen("kickstart.file", "w"))  !=  NULL) {
            result = fwrite(kickorig, kicklen, 1, fh);
        }
        fclose(fh);
    }

[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.2 What is the Amiga equivalent of . (Current directory)?

The AmigaDOS equivalent for the . representing the current directory on Unix and certain non-reentrant interrupt handlers is the empty string, which is written as "".

Example:

    COPY S:Startup-Sequence ""

copies your Startup-Sequence to the current directory.

There is some FD software available to patch a Unix-like interpretation of . and .. into the AmigaDOS, including, but not limited to, Martin Scott’s UnixDirs. (Aminet, ‘os20/util/UnixDirsII.lha’ or Fish-disk 837)

Arno Eigenwillig (arno@yaps.dinoco.de)


[Top] [Contents] [Index] [ ? ]

About This Document

This document was generated on February 12, 2023 using texi2html 5.0.

The buttons in the navigation panels have the following meaning:

Button Name Go to From 1.2.3 go to
[ << ] FastBack Beginning of this chapter or previous chapter 1
[ < ] Back Previous section in reading order 1.2.2
[ Up ] Up Up section 1.2
[ > ] Forward Next section in reading order 1.2.4
[ >> ] FastForward Next chapter 2
[Top] Top Cover (top) of document  
[Contents] Contents Table of contents  
[Index] Index Index  
[ ? ] About About (help)  

where the Example assumes that the current position is at Subsubsection One-Two-Three of a document of the following structure:


This document was generated on February 12, 2023 using texi2html 5.0.